package park.borne;

import mat.i2c.master.MasterBusI2c;

/**
 *
 * <p>Titre : Test borne</p>
 * <p>Description : permet un accès direct au bus I2c</p>
 * <p>Copyright : Copyright (c) 2003</p>
 * <p>Société : </p>
 * @author Gilles Petot
 * @version 1.0
 */
public class TestBorne
{
    MasterBusI2c i2cBus;

    public TestBorne()
    {
	i2cBus = MasterBusI2c.getInstance();
    }

    public int doTrame(byte[] trame)
    {
	return  i2cBus.doTrame(trame);
    }

}